Column Space (Image)

Introduction

The column space (also called the image) of a matrix is the set of all vectors you can get by multiplying that matrix by some input vector.
If you already understand span, then the column space will feel familiar: it is simply the span of the columns of the matrix.

Review: Computing Matrix–Vector Products

What the Column Space Represents

Why the Column Space Matters

Examples

Example 1: A 2×2 matrix

Let $$A = \begin{bmatrix}1 & 2 \\ 2 & 4\end{bmatrix}.$$

Example 2: A 3×2 matrix

Let $$A = \begin{bmatrix}1 & 0 \\ 0 & 1 \\ 1 & 1\end{bmatrix}.$$

How to Determine the Column Space

To find the column space:

This method avoids unnecessary work and reveals the dimension of the column space.

Geometric Interpretation

The dimension of the column space is the rank of the matrix.

Exercises

  1. Find the column space of $$A = \begin{bmatrix}1 & 3 \\ 2 & 6\end{bmatrix}.$$

    Solution

    Columns: $(1,2)$ and $(3,6) = 3(1,2)$.
    Column space is the line spanned by $(1,2)$.
  2. Determine whether the vector $(3,5)$ is in the column space of $$A = \begin{bmatrix}1 & 1 \\ 2 & 3\end{bmatrix}.$$

    Solution

    Solve $x(1,2) + y(1,3) = (3,5)$.
    A solution exists: $x = 4$, $y = -1$.
    So $(3,5)$ is in the column space.
  3. Describe the column space of $$A = \begin{bmatrix}1 & 0 & 1 \\ 0 & 1 & 1\end{bmatrix}.$$

    Solution

    Columns: $(1,0)$, $(0,1)$, $(1,1)$.
    First two already span all of $\mathbb{R}^2$.
    Column space is $\mathbb{R}^2$.
  4. True or false: The column space of a $3 \times 2$ matrix can be all of $\mathbb{R}^3$.

    Solution

    False.
    A $3 \times 2$ matrix has at most rank 2, so its column space cannot fill $\mathbb{R}^3$.
  5. Find a basis for the column space of $$A = \begin{bmatrix}2 & 4 & 1 \\ 1 & 2 & 0 \\ 3 & 6 & 1\end{bmatrix}.$$

    Solution

    Row‑reduce to find pivot columns.
    Pivot columns are the first and third.
    Basis: $\{(2,1,3), (1,0,1)\}$.
  6. Determine the dimension of the column space of $$A = \begin{bmatrix}1 & 2 & 3 \\ 0 & 1 & 4 \\ 0 & 0 & 0\end{bmatrix}.$$

    Solution

    Pivot columns are the first two.
    Dimension of the column space is 2.
  7. Explain in words what it means for a vector $b$ to not be in the column space of a matrix $A$.

    Solution

    It means there is no combination of the columns of $A$ that equals $b$.
    In other words, the system $Ax = b$ has no solution.